home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / zfproc.c < prev    next >
C/C++ Source or Header  |  1996-06-26  |  10KB  |  333 lines

  1. /* Copyright (C) 1994, 1995 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* zfproc.c */
  20. /* Procedure-based filter stream support */
  21. #include "memory_.h"
  22. #include "ghost.h"
  23. #include "errors.h"
  24. #include "oper.h"        /* for ifilter.h */
  25. #include "estack.h"
  26. #include "gsstruct.h"
  27. #include "ialloc.h"
  28. #include "istruct.h"        /* for gs_reloc_refs */
  29. #include "stream.h"
  30. #include "strimpl.h"
  31. #include "ifilter.h"
  32. #include "files.h"
  33. #include "store.h"
  34.  
  35. /* ---------------- Generic ---------------- */
  36.  
  37. /* GC procedures */
  38. #define pptr ((stream_proc_state *)vptr)
  39. private CLEAR_MARKS_PROC(sproc_clear_marks) {
  40.     r_clear_attrs(&pptr->proc, l_mark);
  41.     r_clear_attrs(&pptr->data, l_mark);
  42. }
  43. private ENUM_PTRS_BEGIN(sproc_enum_ptrs) return 0;
  44.     case 0:
  45.         *pep = &pptr->proc;
  46.         return ptr_ref_type;
  47.     case 1:
  48.         *pep = &pptr->data;
  49.         return ptr_ref_type;
  50. ENUM_PTRS_END
  51. private RELOC_PTRS_BEGIN(sproc_reloc_ptrs) ;
  52.     gs_reloc_refs((ref_packed *)&pptr->proc,
  53.               (ref_packed *)(&pptr->proc + 1), gcst);
  54.     r_clear_attrs(&pptr->proc, l_mark);
  55.     gs_reloc_refs((ref_packed *)&pptr->data,
  56.               (ref_packed *)(&pptr->data + 1), gcst);
  57.     r_clear_attrs(&pptr->data, l_mark);
  58. RELOC_PTRS_END
  59. #undef pptr
  60. /* Structure type for procedure-based streams. */
  61. private_st_stream_proc_state();
  62.  
  63. /* Allocate and open a procedure-based filter. */
  64. /* The caller must have checked that *sop is a procedure. */
  65. private int
  66. s_proc_init(ref *sop, stream **psstrm, uint mode, const stream_template *temp)
  67. {    stream *sstrm;
  68.     stream_proc_state *state;
  69.     static const stream_procs procs =
  70.        {    s_std_noavailable, s_std_noseek, s_std_read_reset,
  71.         s_std_read_flush, s_std_null, NULL
  72.        };
  73.     sstrm = file_alloc_stream(imemory, "s_proc_init(stream)");
  74.     state = (stream_proc_state *)s_alloc_state(imemory, &st_sproc_state,
  75.                            "s_proc_init(state)");
  76.     if ( sstrm == 0 || state == 0 )
  77.     {    ifree_object(state, "s_proc_init(state)");
  78.         /*ifree_object(sstrm, "s_proc_init(stream)");*/    /* just leave it on the file list */
  79.         return_error(e_VMerror);
  80.     }
  81.     s_std_init(sstrm, NULL, 0, &procs, mode);
  82.     sstrm->procs.process = temp->process;
  83.     state->template = temp;
  84.     state->memory = imemory;
  85.     state->eof = 0;
  86.     state->proc = *sop;
  87.     make_empty_string(&state->data, a_all);
  88.     state->index = 0;
  89.     sstrm->state = (stream_state *)state;
  90.     *psstrm = sstrm;
  91.     return 0;
  92. }
  93.  
  94. /* Handle an interrupt during a stream operation. */
  95. /* This is logically unrelated to procedure streams, */
  96. /* but it is also associated with the interpreter stream machinery. */
  97. private int
  98. s_handle_intc(const ref *pstate, int nstate, int (*cont)(P1(os_ptr)))
  99. {    int npush = nstate + 2;
  100.  
  101.     check_estack(npush);
  102.     if ( nstate )
  103.       memcpy(esp + 2, pstate, nstate * sizeof(ref));
  104. #if 0                /* **************** */
  105.     { int code = gs_interpret_error(e_interrupt, (ref *)(esp + npush));
  106.       if ( code < 0 )
  107.         return code;
  108.     }
  109. #else                /* **************** */
  110.     npush--;
  111. #endif                /* **************** */
  112.     make_op_estack(esp + 1, cont);
  113.     esp += npush;
  114.     return o_push_estack;
  115. }
  116.  
  117.  
  118. /* ---------------- Read streams ---------------- */
  119.  
  120. /* Forward references */
  121. private stream_proc_process(s_proc_read_process);
  122. private int s_proc_read_continue(P1(os_ptr));
  123.  
  124. /* Stream templates */
  125. private const stream_template s_proc_read_template =
  126. {    &st_sproc_state, NULL, s_proc_read_process, 1, 1, NULL
  127. };
  128.  
  129. /* Allocate and open a procedure-based read stream. */
  130. /* The caller must have checked that *sop is a procedure. */
  131. int
  132. sread_proc(ref *sop, stream **psstrm)
  133. {    int code =
  134.       s_proc_init(sop, psstrm, s_mode_read, &s_proc_read_template);
  135.     if ( code < 0 )
  136.       return code;
  137.     (*psstrm)->end_status = CALLC;
  138.     return code;
  139. }
  140.  
  141. /* Handle an input request. */
  142. #define ss ((stream_proc_state *)st)
  143. private int
  144. s_proc_read_process(stream_state *st, stream_cursor_read *ignore_pr,
  145.   stream_cursor_write *pw, bool last)
  146. {    /* Move data from the string returned by the procedure */
  147.     /* into the stream buffer, or ask for a callback. */
  148.     uint count = r_size(&ss->data) - ss->index;
  149.     if ( count > 0 )
  150.       {    uint wcount = pw->limit - pw->ptr;
  151.         if ( wcount < count )
  152.           count = wcount;
  153.         memcpy(pw->ptr + 1, ss->data.value.bytes + ss->index, count);
  154.         pw->ptr += count;
  155.         ss->index += count;
  156.         return 1;
  157.       }
  158.     return (ss->eof ? EOFC : CALLC);
  159. }
  160. #undef ss
  161.  
  162. /* Handle an exception (INTC or CALLC) from a read stream */
  163. /* whose buffer is empty. */
  164. int
  165. s_handle_read_exception(int status, const ref *fop, const ref *pstate,
  166.   int nstate, int (*cont)(P1(os_ptr)))
  167. {    int npush = nstate + 4;
  168.     stream *ps;
  169.  
  170.     switch ( status )
  171.     {
  172.     case INTC: return s_handle_intc(pstate, nstate, cont);
  173.     case CALLC: break;
  174.     default: return_error(e_ioerror);
  175.     }
  176.     /* Find the stream whose buffer needs refilling. */
  177.     for ( ps = fptr(fop); ps->strm != 0; )
  178.       ps = ps->strm;
  179. #define psst ((stream_proc_state *)ps->state)
  180.     check_estack(npush);
  181.     if ( nstate )
  182.       memcpy(esp + 2, pstate, nstate * sizeof(ref));
  183.     make_op_estack(esp + 1, cont);
  184.     esp += npush;
  185.     make_op_estack(esp - 2, s_proc_read_continue);
  186.     esp[-1] = *fop;
  187.     r_clear_attrs(esp - 1, a_executable);
  188.     *esp = psst->proc;
  189. #undef psst
  190.     return o_push_estack;
  191. }
  192. /* Continue a read operation after returning from a procedure callout. */
  193. /* osp[0] contains the file (pushed on the e-stack by handle_read_status); */
  194. /* osp[-1] contains the new data string (pushed by the procedure). */
  195. /* The top of the e-stack contains the real continuation. */
  196. private int
  197. s_proc_read_continue(os_ptr op)
  198. {    os_ptr opbuf = op - 1;
  199.     stream *ps;
  200.     stream_proc_state *ss;
  201.  
  202.     check_file(ps, op);
  203.     check_read_type(*opbuf, t_string);
  204.     while ( (ps->end_status = 0, ps->strm) != 0 )
  205.       ps = ps->strm;
  206.     ss = (stream_proc_state *)ps->state;
  207.     ss->data = *opbuf;
  208.     ss->index = 0;
  209.     if ( r_size(opbuf) == 0 )
  210.       ss->eof = true;
  211.     pop(2);
  212.     return 0;
  213. }
  214.  
  215. /* ---------------- Write streams ---------------- */
  216.  
  217. /* Forward references */
  218. private stream_proc_process(s_proc_write_process);
  219. private int s_proc_write_continue(P1(os_ptr));
  220.  
  221. /* Stream templates */
  222. private const stream_template s_proc_write_template =
  223. {    &st_sproc_state, NULL, s_proc_write_process, 1, 1, NULL
  224. };
  225.  
  226. /* Allocate and open a procedure-based write stream. */
  227. /* The caller must have checked that *sop is a procedure. */
  228. int
  229. swrite_proc(ref *sop, stream **psstrm)
  230. {    return s_proc_init(sop, psstrm, s_mode_write, &s_proc_write_template);
  231. }
  232.  
  233. /* Handle an output request. */
  234. #define ss ((stream_proc_state *)st)
  235. private int
  236. s_proc_write_process(stream_state *st, stream_cursor_read *pr,
  237.   stream_cursor_write *ignore_pw, bool last)
  238. {    /* Move data from the stream buffer to the string */
  239.     /* returned by the procedure, or ask for a callback. */
  240.     uint rcount = pr->limit - pr->ptr;
  241.     if ( rcount > 0 )
  242.       {    uint wcount = r_size(&ss->data) - ss->index;
  243.         uint count = min(rcount, wcount);
  244.         memcpy(ss->data.value.bytes + ss->index, pr->ptr + 1, count);
  245.         pr->ptr += count;
  246.         ss->index += count;
  247.         if ( rcount > wcount )
  248.           return CALLC;
  249.         else if ( last )
  250.           {    ss->eof = true;
  251.             return CALLC;
  252.           }
  253.         else
  254.           return 0;
  255.       }
  256.     return ((ss->eof = last) ? EOFC : 0);
  257. }
  258. #undef ss
  259.  
  260. /* Handle an exception (INTC or CALLC) from a write stream */
  261. /* whose buffer is full. */
  262. int
  263. s_handle_write_exception(int status, const ref *fop, const ref *pstate,
  264.   int nstate, int (*cont)(P1(os_ptr)))
  265. {    stream *ps;
  266.  
  267.     switch ( status )
  268.     {
  269.     case INTC: return s_handle_intc(pstate, nstate, cont);
  270.     case CALLC: break;
  271.     default: return_error(e_ioerror);
  272.     }
  273.     /* Find the stream whose buffer needs emptying. */
  274.     for ( ps = fptr(fop); ps->strm != 0; )
  275.       ps = ps->strm;
  276. #define psst ((stream_proc_state *)ps->state)
  277.     if ( psst->eof )
  278.     {    /* This is the final call from closing the stream. */
  279.         /* Don't run the continuation. */
  280.         check_estack(5);
  281.         esp += 5;
  282.         make_op_estack(esp - 4, zpop);    /* pop the file */
  283.         make_op_estack(esp - 3, zpop);    /* pop the string returned */
  284.                         /* by the procedure */
  285.         make_false(esp - 1);
  286.     }
  287.     else
  288.     {    int npush = nstate + 6;
  289.         check_estack(npush);
  290.         if ( nstate )
  291.           memcpy(esp + 2, pstate, nstate * sizeof(ref));
  292.         make_op_estack(esp + 1, cont);
  293.         esp += npush;
  294.         make_op_estack(esp - 4, s_proc_write_continue);
  295.         esp[-3] = *fop;
  296.         r_clear_attrs(esp - 3, a_executable);
  297.         make_true(esp - 1);
  298.     }
  299.     esp[-2] = psst->proc;
  300.     *esp = psst->data;
  301.     r_set_size(esp, psst->index);
  302. #undef psst
  303.     return o_push_estack;
  304. }
  305. /* Continue a write operation after returning from a procedure callout. */
  306. /* osp[0] contains the file (pushed on the e-stack by handle_write_status); */
  307. /* osp[-1] contains the new buffer string (pushed by the procedure). */
  308. /* The top of the e-stack contains the real continuation. */
  309. private int
  310. s_proc_write_continue(os_ptr op)
  311. {    os_ptr opbuf = op - 1;
  312.     stream *ps;
  313.     stream_proc_state *ss;
  314.  
  315.     check_file(ps, op);
  316.     check_write_type(*opbuf, t_string);
  317.     while ( (ps->end_status = 0, ps->strm) != 0 )
  318.       ps = ps->strm;
  319.     ss = (stream_proc_state *)ps->state;
  320.     ss->data = *opbuf;
  321.     ss->index = 0;
  322.     pop(2);
  323.     return 0;
  324. }
  325.  
  326. /* ------ Initialization procedure ------ */
  327.  
  328. BEGIN_OP_DEFS(zfproc_op_defs) {
  329.         /* Internal operators */
  330.     {"2%s_proc_read_continue", s_proc_read_continue},
  331.     {"2%s_proc_write_continue", s_proc_write_continue},
  332. END_OP_DEFS(0) }
  333.